home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_300
/
359_11
/
patch5.000
/
EMU387
/
E11.CC
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-09-11
|
311 b
|
24 lines
#include "emu.h"
#include "rmov.h"
void emu_11()
{
if (empty())
return;
if (modrm > 0277)
{
// fxch st(i)
int i = modrm & 7;
if (empty(i))
return;
reg t;
r_mov(st(), t);
r_mov(st(i), st());
r_mov(t, st(i));
}
else
{
emu_bad();
}
}